home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / fixptlib / destroy_fp_windows.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-18  |  350 b   |  20 lines

  1. /*
  2. ### destroy periodic orbit window ###
  3. */
  4.  
  5. #include <suntool/sunview.h>
  6. #include <suntool/panel.h>
  7.  
  8. void destroy_fp_windows()
  9. {
  10.         extern short fp_panel_show;
  11.         extern Frame fp_frame;
  12.         extern Panel fp_panel;
  13.  
  14.         if(fp_panel_show){
  15.             window_destroy(fp_panel);
  16.             window_destroy(fp_frame);
  17.         fp_panel_show=0;
  18.     }
  19. }
  20.